home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / simage / bmpview.dpr next >
Encoding:
Text File  |  1995-12-22  |  375 b   |  19 lines

  1. program BMPview;
  2.  
  3. uses
  4.   Forms,
  5.   Controls,
  6.   Bmpview1 in 'BMPVIEW1.PAS' {Viewer},
  7.   Fullscr in 'FULLSCR.PAS' {FullSlide};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   screen.cursor := crHourGlass;
  13.   Application.Title := 'BMP Viewer';
  14.   Application.CreateForm(TViewer, Viewer);
  15.   Application.CreateForm(TFullSlide, FullSlide);
  16.   screen.cursor := crDefault;
  17.   Application.Run;
  18. end.
  19.